200
Disables the control
OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Series.Add("<img>1</img>Asia(4600),<img>2</img>Africa(1300),<img>3</img>Europe(747),<img>4</img>North America(579),<img>5</img>South America(433),<img>6</img>Australia/Oceania(42)")
oGraph.Enabled = false
oGraph.Legend.Visible = true
oGraph.EndUpdate()

199
Show icons

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTqlVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yNAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
oGraph.AutoFit = true
oGraph.Series.Add("<img>1</img>Asia(4600),<img>2</img>Africa(1300),<img>3</img>Europe(747),<img>4</img>North America(579),<img>5</img>South America(433),<img>6</img>Australia/Oceania(42)")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

198
Displays the control's version
OleObject oGraph

oGraph = ole_1.Object
MessageBox("Information",string( oGraph.Version ))

197
Changes the control's border (EBN)

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oGraph.Appearance = 16777216 /*0x1000000 | */
oGraph.Series.Add("Asia(4600),Africa(1300),Europe(747),North America(579),South America(433),Australia/Oceania(42)")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

196
Changes the control's border

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Appearance = 1
oGraph.Series.Add("Asia(4600),Africa(1300),Europe(747),North America(579),South America(433),Australia/Oceania(42)")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

195
Display the logo on the control's background

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Picture = oGraph.ExecuteTemplate("loadpicture(`c:\exontrol\images\card.png`)")
oGraph.PictureDisplay = 2
oGraph.AutoFit = true
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

194
Changes the control's font

OleObject oGraph,var_CategoryAxis,var_Serie,var_StdFont

oGraph = ole_1.Object
oGraph.BeginUpdate()
var_StdFont = oGraph.Font
	var_StdFont.Name = "Tahoma"
	var_StdFont.Size = 12
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add("1410,1390,331,276,225,213")
	var_Serie.Type = "Pie"
	var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + (percent format ``) + `%`"
oGraph.Legend.Visible = true
oGraph.EndUpdate()

193
Shows the value-scroll (vertical scroll bar for area-compatible chart types)

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 8
oGraph.Misc(31,1.5)
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "msft"
	var_Serie.Data = "Open,High,Low,Close"
	var_Serie.Type = "candle"
oGraph.EndUpdate()

192
No values are shown

OleObject oGraph,var_CategoryAxis,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Misc(29,0)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add("1410,1390,331,276,225,213")
	var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + value"
oGraph.EndUpdate()

191
No labels on category-axis are shown

OleObject oGraph,var_CategoryAxis,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 15
oGraph.Misc(28,0)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Date"
	var_CategoryAxis.Format = "value mid 9 left 2"
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "msft"
	var_Serie.Data = "Open,High,Low,Close"
	var_Serie.Type = "candle"
oGraph.EndUpdate()

190
No category grid lins are shown

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 8
oGraph.Misc(27,0)
oGraph.CategoryAxis.MajorGridLines.Color = "lightgray"
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "msft"
	var_Serie.Data = "Open,High,Low,Close"
	var_Serie.Type = "candle"
oGraph.EndUpdate()

189
No category ticks are shown

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 8
oGraph.Misc(26,0)
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "msft"
	var_Serie.Data = "Open,High,Low,Close"
	var_Serie.Type = "candle"
oGraph.EndUpdate()

188
Defines the lower and upper margins of the valueSize property (CTRL + Middle button and drag to resize the values)
OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 8
oGraph.Misc(25,"1,12")
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "msft"
	var_Serie.Data = "Open,High,Low,Close"
	var_Serie.Type = "candle"
oGraph.EndUpdate()

187
Even though I set the AutoFit property to False, the control still gets resized when I click CTRL + Middle button
OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 8
oGraph.Misc(25,"0,8")
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.EndUpdate()

186
Defines the angle (in degrees) the value-line is rotated by, when the values goes up(positive) or down(negative)

OleObject oGraph,var_CategoryAxis,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(23,0)
oGraph.Misc(24,90)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Green,Black,Red,Lime,Orange,Red"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add("1410,331,-1390,-276,1225,213")
	var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + (value format ``)"
	var_Serie.Type = "line"
oGraph.EndUpdate()

185
Defines the additional angle (in degrees) the value-line is rotated by

OleObject oGraph,var_CategoryAxis,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(22,0)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add("1410,1390,331,276,225,213")
	var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + (percent format ``) + `%`"
oGraph.EndUpdate()

184
Defines the distance to extend the value-line by

OleObject oGraph,var_CategoryAxis,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(21,12)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add("1410,1390,331,276,225,213")
	var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + value"
oGraph.EndUpdate()

183
Defines the distance from the edge of the outer circle where the values are displayed

OleObject oGraph,var_CategoryAxis,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Misc(20,0)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add("1410,1390,331,276,225,213")
	var_Serie.Type = "Pie"
	var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + (percent format ``) + `%`"
oGraph.ValuePoint = ",,,,,,,red,black,2"
oGraph.EndUpdate()

182
Defines the distance from the edge of the inner circle where the values are displayed

OleObject oGraph,var_CategoryAxis,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Misc(19,8)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add("1410,1390,331,276,225,213")
	var_Serie.Type = "Pie"
	var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + (percent format ``) + `%`"
oGraph.EndUpdate()

181
Defines the padding between rings of the "pie" chart-type

OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Misc(18,12)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add("1410,1390,331,276,225,213")
	var_Serie.Type = "Pie"
	var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + (percent format ``) + `%`"
var_Serie1 = oGraph.Series.Add("141,139,331,276,225,213")
	var_Serie1.Type = "Pie"
	var_Serie1.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie1.ValueFormat = "`<c>` + category + `<br><c>` + (percent format ``) + `%`"
oGraph.EndUpdate()

180
Requests for a new layout once the serie's visible property is changed

OleObject oGraph,var_CategoryAxis,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Misc(17,false)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add("1410,1390,331,276,225,213")
	var_Serie.Type = "Pie"
	var_Serie.ShowValue = 7 /*exValue | exLine | exPoint*/
	var_Serie.ValueFormat = "`<c>` + category + `<br><c>` + (percent format ``) + `%`"
oGraph.Legend.Visible = true
oGraph.EndUpdate()

179
Prevents rotating the labels

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(16,false)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
oGraph.Series.Add("1410,1390,331,276,225,213").Type = "radarColumn"
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

178
Defines the angle (in degrees) to start the circular-compatible charts (radial or pie)

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(15,0)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
oGraph.Series.Add("1410,1390,331,276,225,213").Type = "radarColumn"
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

177
Defines polygonal instead of circular

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(14,true)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
oGraph.Series.Add("1410,1390,331,276,225,213").Type = "radarColumn"
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

176
Defines the distance (proportionally with the valueSize property) between the first, next and last value of the same category and its border

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(11,0.5)
oGraph.Misc(12,0.5)
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.Series.Add("9900,3300,980,190,90,8")
oGraph.EndUpdate()

175
Ensures that the marginal labels of the value-axis ensure fit the axis's client-rectangle

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(13,true)
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

174
Prevents updating the margins/minimum/maximum of the value-axis when the user scrolls the data
OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 6
oGraph.Misc(10,0)
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv"
var_Serie = oGraph.Series.Add()
	var_Serie.Data = "Volume"
	var_Serie.Type = "candle"
oGraph.EndUpdate()

173
Defines the padding for labels and title of the value-axis

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(9,16)
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

172
Defines the size (height for horizontal axis and width for vertical axis) to display the category-axis (line and ticks)

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(8,16)
oGraph.ValueAxis.OffsetLabel = "16,16"
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

171
Defines the padding for labels and title of the category-axis

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(7,16)
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

170
Defines the size (height for horizontal axis and width for vertical axis) to display the category-axis (line and ticks)

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(6,16)
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
	var_CategoryAxis.OffsetLabel = "0,-16"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

169
Defines the minimum/maximum portion (as a proportion of major unit, as a numeric-value between 0 and 1) to extend the axis before the first/after the last value of the serie (minimum, maximum value)

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(4,1)
oGraph.Misc(5,1)
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

168
Defines the number of digits to appear after the decimal point (as it is)

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(3,-1)
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410.1211,1390.8999,331.3421,276.8991,225.0023,213.2231").ShowValue = 7 /*exValue | exLine | exPoint*/
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

167
Defines the number of digits to appear after the decimal point

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(3,3)
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410.1211,1390.8999,331.3421,276.8991,225.0023,213.2231").ShowValue = 7 /*exValue | exLine | exPoint*/
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

166
Defines the inferior and superior limits of the number of major-unit intervals an axis can display

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(2,"2")
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

165
Defines the base major-units alternatives (separated by comma) the control uses to calculate the major-unit for the axes

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Misc(1,"5")
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil"
oGraph.Series.Add("1410,1390,331,276,225,213")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

164
Customizes the tooltips to show on category-axis, when the crosshair intersects the category-axis

OleObject oGraph,var_Cursor,var_Serie,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxis = oGraph.ValueAxis
	var_ValueAxis.Format = "value + `°`"
	var_ValueAxis.CursorFormat = "``"
oGraph.CategoryAxis.CursorFormat = "`<b><fgcolor F0F0F0> ` + value + ` `"
var_Serie = oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain")
	var_Serie.Type = "RangeColumn"
	var_Serie.CursorFormat = "%V0 +`° - ` + %V1 + `°`"
oGraph.SeriesColors = "green"
var_Cursor = oGraph.Cursor
	var_Cursor.Visible = true
	var_Cursor.SerieTooltipBackColor = "black"
	var_Cursor.SerieTooltipForeColor = "rgb(254,254,254)"
	var_Cursor.TooltipPad = 4
	var_Cursor.ShowCursorValueLine = false
oGraph.EndUpdate()

163
Defines the configuration options to show the grid lines and labels between for the overview panel

OleObject oGraph,var_FormatGridLinesOptions,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
var_ValueAxis = oGraph.ValueAxis
	var_ValueAxis.Format = "value / 1000000"
	var_ValueAxis.MajorUnit = 50000000
var_FormatGridLinesOptions = oGraph.CategoryAxis.OverviewGridLines
	var_FormatGridLinesOptions.Format = "`<fgcolor red><b>` + (value left 4)"
	var_FormatGridLinesOptions.Color = "red"
	var_FormatGridLinesOptions.Style = 1
	var_FormatGridLinesOptions.Width = 2
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv"
oGraph.SeriesColors = "blue"
oGraph.Series.Add("Volume")
oGraph.Overview.Visible = true
oGraph.EndUpdate()

162
Add additional grid-lines for categories

OleObject oGraph,var_CategoryAxis,var_FormatGridLinesOptions

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
	var_FormatGridLinesOptions = var_CategoryAxis.ChartGridLines
		var_FormatGridLinesOptions.Format = "value = `Pakistan`"
		var_FormatGridLinesOptions.Align = 1024
		var_FormatGridLinesOptions.Width = 2
		var_FormatGridLinesOptions.Color = "black"
		var_FormatGridLinesOptions.Skip = 1
oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130")
oGraph.SeriesColors = "lime"
oGraph.EndUpdate()

161
Add grid-lines for categories

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130")
oGraph.SeriesColors = "lime"
oGraph.EndUpdate()

160
Shifts horizontally or vertically the labels relative to their original positions

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 48
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico"
	var_CategoryAxis.OffsetLabel = "0,-22"
	var_CategoryAxis.Tfi = "<fgcolor red> bold"
oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130")
oGraph.SeriesColors = "lime"
oGraph.EndUpdate()

159
Combines/Merges categories sharing consecutive names according to the Format property

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.CategoryAxis.Visible = true
var_CategoryAxis = oGraph.CategoryAxes.Add("Winter,Winter,Spring,Spring,Spring,Summer,Summer,Summer,Autumn,Autumn,Autumn,Winter")
	var_CategoryAxis.Format = "value"
	var_CategoryAxis.Split = true
	var_CategoryAxis.MajorGridLines.Color = "black"
oGraph.ValueAxis.Format = "value + `°`"
oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn"
oGraph.SeriesColors = "lime"
oGraph.EndUpdate()

158
Combines/Merges categories sharing consecutive names according to the Format property

OleObject oGraph,var_CategoryAxis,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 6
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/msft.csv"
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Date"
	var_CategoryAxis.Format = "dateS(value left 7) format `MMM`"
	var_CategoryAxis.Split = true
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "msft"
	var_Serie.Data = "Open,High,Low,Close"
	var_Serie.Type = "candle"
oGraph.EndUpdate()

157
Defines the category-axis's background color

OleObject oGraph,var_CategoryAxis,var_Legend

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.CategoryAxis.Visible = true
var_CategoryAxis = oGraph.CategoryAxes.Add("Winter,Winter,Spring,Spring,Spring,Summer,Summer,Summer,Autumn,Autumn,Autumn,Winter")
	var_CategoryAxis.Format = "value"
	var_CategoryAxis.Split = true
	var_CategoryAxis.Tfi = "bold"
	var_CategoryAxis.Color = 14474460
oGraph.ValueAxis.Format = "value + `°`"
oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn"
oGraph.Series.Add("Jan(-4 2), Feb(-3 4), Mar(1 10), Apr(5 16), May(10 21), Jun(13 25), Jul(15 28), Aug(14 27), Sep(10 22), Oct(5 15), Nov(0 7), Dec(-3 3)","Romania").Type = "RangeColumn"
var_Legend = oGraph.Legend
	var_Legend.Visible = true
	var_Legend.Dock = 3
oGraph.EndUpdate()

156
Defines the color, size, style, skip and step configuration options of the major ticks to be shown on the value-axis

OleObject oGraph,var_TickOptions

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Format = "value + `°`"
var_TickOptions = oGraph.CategoryAxis.MajorTicks
	var_TickOptions.Color = "red"
	var_TickOptions.Width = 4
	var_TickOptions.Style = 0
	var_TickOptions.Skip = 3
	var_TickOptions.Step = 2
oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn"
oGraph.SeriesColors = "green"
oGraph.EndUpdate()

155
Defines the color, size, style, skip and step configuration options of the major grid-lines to be shown by the value-axis on the chart panel

OleObject oGraph,var_GridLinesOptions

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Format = "value + `°`"
var_GridLinesOptions = oGraph.CategoryAxis.MajorGridLines
	var_GridLinesOptions.Color = "red"
	var_GridLinesOptions.Width = 4
	var_GridLinesOptions.Style = 0
	var_GridLinesOptions.Skip = 3
	var_GridLinesOptions.Step = 2
oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn"
oGraph.SeriesColors = "green"
oGraph.EndUpdate()

154
Defines the color, size and style to display the line of the category-axis

OleObject oGraph,var_LineOptions

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Format = "value + `°`"
var_LineOptions = oGraph.CategoryAxis.AxisLine
	var_LineOptions.Color = "red"
	var_LineOptions.Width = 2
	var_LineOptions.Style = 0
oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn"
oGraph.SeriesColors = "green"
oGraph.EndUpdate()

153
Specifies the rotation angle (in degrees) for the title and labels of the category-axis, in 'labels,title' format

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Format = "value + `°`"
oGraph.CategoryAxis.Angle = "-90"
oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn"
oGraph.SeriesColors = "green"
oGraph.EndUpdate()

152
Defines the title of the category-axis

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Format = "value + `°`"
oGraph.CategoryAxis.Title = "<b>Range-Temperature"
oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn"
oGraph.SeriesColors = "green"
oGraph.EndUpdate()

151
Changes the font attributes to apply on the title and labels of the category-axis

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico"
	var_CategoryAxis.Tfi = "<fgcolor red> Tahoma 7 bold"
oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

150
Defines the direction of the category axis

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico"
	var_CategoryAxis.Reverse = true
oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

149
Aligns the category-axis to bottom/right or top/left side of the view

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico"
	var_CategoryAxis.Align = 0
oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

148
Hides the category axis

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico"
	var_CategoryAxis.Visible = false
oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

147
Customizes the labels to show on category axis

OleObject oGraph,var_CategoryAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico"
	var_CategoryAxis.Format = "(index < 2 ? `<b>` : `<fgcolor gray>`) + value"
oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

146
Defines the categories (method 2)

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Series.Add("China(1410),India(1390),United States(331),Indonesia(276),Pakistan(225),Brazil(213),Nigeria(211),Bangladesh(166),Russia(145),Mexico(130)")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

145
Defines the categories (method 1)

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.CategoryAxis.Categories = "China,India,United States,Indonesia,Pakistan,Brazil,Nigeria,Bangladesh,Russia,Mexico"
oGraph.Series.Add("1410,1390,331,276,225,213,211,166,145,130")
oGraph.SeriesColors = "blue"
oGraph.EndUpdate()

144
Adds multiple category-axes

OleObject oGraph,var_CategoryAxis,var_Legend

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.CategoryAxis.MajorGridLines.Color = "lightgray"
var_CategoryAxis = oGraph.CategoryAxes.Add("Winter,Winter,Spring,Spring,Spring,Summer,Summer,Summer,Autumn,Autumn,Autumn,Winter")
	var_CategoryAxis.Format = "value"
	var_CategoryAxis.Split = true
	var_CategoryAxis.Tfi = "bold"
	var_CategoryAxis.MajorGridLines.Color = "black"
oGraph.ValueAxis.Format = "value + `°`"
oGraph.Series.Add("Jan(5 15), Feb(6 16), Mar(8 18), Apr(10 20), May(13 23), Jun(17 28), Jul(20 32), Aug(20 32), Sep(18 28), Oct(14 23), Nov(9 17), Dec(6 15)","Spain").Type = "RangeColumn"
oGraph.Series.Add("Jan(-4 2), Feb(-3 4), Mar(1 10), Apr(5 16), May(10 21), Jun(13 25), Jul(15 28), Aug(14 27), Sep(10 22), Oct(5 15), Nov(0 7), Dec(-3 3)","Romania").Type = "RangeColumn"
var_Legend = oGraph.Legend
	var_Legend.Visible = true
	var_Legend.Dock = 3
oGraph.EndUpdate()

143
Redefines the major-unit of the value-axis

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.MajorUnit = 1000
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

142
Redefines the margins/limits of the value-axis

OleObject oGraph,var_Serie,var_Series,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxis = oGraph.ValueAxis
	var_ValueAxis.Min = -100
	var_ValueAxis.Max = 6000
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

141
Defines the start/end position of the value-axis (relative to full axis)

OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxes = oGraph.ValueAxes
	var_ValueAxes.Add("p").End = 0.75
	var_ValueAxis = var_ValueAxes.Add("a")
		var_ValueAxis.End = 0.25
		var_ValueAxis.Visible = false
		var_ValueAxis.ColorChart = 16119285
		var_ValueAxis.Reverse = true
		var_ValueAxis.MajorGridLines.Width = 0
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Axis = "p"
		var_Serie.Type = "Line"
		var_Serie.Misc(6,3)
	var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856")
		var_Serie1.Name = "Area"
		var_Serie1.Axis = "a"
oGraph.Legend.Visible = true
oGraph.EndUpdate()

140
Customizes the tooltips to show on value-axis, when the crosshair hovers the chart

OleObject oGraph,var_Serie,var_Series,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxis = oGraph.ValueAxis
	var_ValueAxis.Format = "value format `0`"
	var_ValueAxis.CursorFormat = "value format `0`"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.Cursor.Visible = true
oGraph.EndUpdate()

139
Hides the tooltip that's shown over the value-axis, while cursor hovers the serie

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.CursorFormat = "``"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.Cursor.Visible = true
oGraph.EndUpdate()

138
Shifts horizontally or vertically the labels relative to their original positions

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.OffsetLabel = "4,8"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

137
Defines the color to apply on the chart's background right to the value-axis

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.ColorChart = "red"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

136
Changes the value-axis's background color

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Color = "red"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

135
Defines the color, size, style, skip and step configuration options of the major grid-lines to be shown by the value-axis on the chart panel

OleObject oGraph,var_GridLinesOptions,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_GridLinesOptions = oGraph.ValueAxis.MajorGridLines
	var_GridLinesOptions.Color = "red"
	var_GridLinesOptions.Width = 4
	var_GridLinesOptions.Style = 0
	var_GridLinesOptions.Skip = 3
	var_GridLinesOptions.Step = 2
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

134
Defines the color, size, style, skip and step configuration options of the major ticks to be shown on the value-axis

OleObject oGraph,var_Serie,var_Series,var_TickOptions

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_TickOptions = oGraph.ValueAxis.MajorTicks
	var_TickOptions.Color = "red"
	var_TickOptions.Width = 4
	var_TickOptions.Style = 0
	var_TickOptions.Skip = 3
	var_TickOptions.Step = 2
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

133
Defines the color, size and style to display the line of the value-axis

OleObject oGraph,var_LineOptions,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_LineOptions = oGraph.ValueAxis.AxisLine
	var_LineOptions.Color = "red"
	var_LineOptions.Width = 2
	var_LineOptions.Style = 0
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

132
Converts the serie's values to [0,1] range, as percentages (the values area always numbers between 0 and 1)

OleObject oGraph,var_Serie,var_Series,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxis = oGraph.ValueAxis
	var_ValueAxis.AsPercent = true
	var_ValueAxis.Format = "value * 100 + `%`"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

131
Defines the rotation angle (in degrees) for the title and labels of the axis, in 'labels,title' format

OleObject oGraph,var_Serie,var_Series,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxis = oGraph.ValueAxis
	var_ValueAxis.Angle = "-90,-90"
	var_ValueAxis.Title = "<b>mil"
	var_ValueAxis.Format = "value ? value format `0` : ``"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

130
Defines the title of the value-axis

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Title = "<b>mil"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

129
Specifies the font attributes to apply on the title and labels of the value-axis

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Tfi = "<fgcolor red> Tahoma 10 bold"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

128
Defines the direction of the value axis

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Reverse = true
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

127
Aligns the value-axis to bottom/right or top/left side of the view

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Align = 2
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

126
Customizes the labels of the value axis

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Format = "value ? `<c><b>` + (value format `0`) + `</b><br><c><fgcolor lightgray>mil` : ``"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

125
Customizes the labels of the value axis

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Format = "value ? (value format `0`) + ` mil` : ``"
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

124
Hides the value-axis

OleObject oGraph,var_Serie,var_Series

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.ValueAxis.Visible = false
oGraph.CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Misc(6,3)
oGraph.EndUpdate()

123
Changes the position of value-axis (click to change the value-axis's position)
/*begin event Click() - Occurs when the user presses and then releases the left mouse button over the control.*/
/*
	oGraph = ole_1.Object
	oGraph.ValueAxes.Item("a").Position = 0
*/
/*end event Click*/

OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxes = oGraph.ValueAxes
	var_ValueAxes.Add("p")
	var_ValueAxes.Add("a").Color = "teal"
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Axis = "p"
		var_Serie.Type = "Line"
		var_Serie.Misc(6,3)
	var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856")
		var_Serie1.Name = "Area"
		var_Serie1.Axis = "a"
oGraph.Legend.Visible = true
oGraph.EndUpdate()

122
Access the value-axis giving its name (click to change the value-axis's background)
/*begin event Click() - Occurs when the user presses and then releases the left mouse button over the control.*/
/*
	oGraph = ole_1.Object
	oGraph.ValueAxes.Item("a").ColorChart = 16119285
	oGraph.Refresh()
*/
/*end event Click*/

OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxes = oGraph.ValueAxes
	var_ValueAxes.Add("p").Start = 0.25
	var_ValueAxis = var_ValueAxes.Add("a")
		var_ValueAxis.End = 0.25
		var_ValueAxis.Visible = false
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Axis = "p"
		var_Serie.Type = "Line"
		var_Serie.Misc(6,3)
	var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856")
		var_Serie1.Name = "Area"
		var_Serie1.Axis = "a"
oGraph.Legend.Visible = true
oGraph.EndUpdate()

121
Specifies the name of the value axis to use

OleObject oGraph,var_CategoryAxis,var_Legend,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis,var_ValueAxis1

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.ValueSize = 18
var_ValueAxes = oGraph.ValueAxes
	var_ValueAxis = var_ValueAxes.Add("pop-ax")
		var_ValueAxis.Name = "pop-ax"
		var_ValueAxis.Start = 0.25
		var_ValueAxis.Align = 0
	var_ValueAxis1 = var_ValueAxes.Add("area-ax")
		var_ValueAxis1.Name = "area-ax"
		var_ValueAxis1.End = 0.25
		var_ValueAxis1.Visible = false
		var_ValueAxis1.ColorChart = 16119285
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Axis = "pop-ax"
		var_Serie.Misc(6,3)
		var_Serie.Vertical = true
	var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856")
		var_Serie1.Name = "Area"
		var_Serie1.Axis = "area-ax"
var_Legend = oGraph.Legend
	var_Legend.Visible = true
	var_Legend.Dock = 3
	var_Legend.Align = 0
oGraph.EndUpdate()

120
Remove a value-axis (click to remove the first value-axis)

/*begin event Click() - Occurs when the user presses and then releases the left mouse button over the control.*/
/*
	oGraph = ole_1.Object
	oGraph.ValueAxes.Remove(0)
*/
/*end event Click*/

OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxes = oGraph.ValueAxes
	var_ValueAxes.Add("p").Start = 0.25
	var_ValueAxis = var_ValueAxes.Add("a")
		var_ValueAxis.End = 0.25
		var_ValueAxis.Visible = false
		var_ValueAxis.ColorChart = 16119285
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Axis = "p"
		var_Serie.Type = "Line"
		var_Serie.Misc(6,3)
	var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856")
		var_Serie1.Name = "Area"
		var_Serie1.Axis = "a"
oGraph.Legend.Visible = true
oGraph.EndUpdate()

119
Remove all value-axes (click to clear the value-axes)

/*begin event Click() - Occurs when the user presses and then releases the left mouse button over the control.*/
/*
	oGraph = ole_1.Object
	oGraph.ValueAxes.Clear()
*/
/*end event Click*/

OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxes = oGraph.ValueAxes
	var_ValueAxes.Add("p").Start = 0.25
	var_ValueAxis = var_ValueAxes.Add("a")
		var_ValueAxis.End = 0.25
		var_ValueAxis.Visible = false
		var_ValueAxis.ColorChart = 16119285
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Axis = "p"
		var_Serie.Type = "Line"
		var_Serie.Misc(6,3)
	var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856")
		var_Serie1.Name = "Area"
		var_Serie1.Axis = "a"
oGraph.Legend.Visible = true
oGraph.EndUpdate()

118
Adds multiple value-axes

OleObject oGraph,var_CategoryAxis,var_Serie,var_Serie1,var_Series,var_ValueAxes,var_ValueAxis

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
var_ValueAxes = oGraph.ValueAxes
	var_ValueAxes.Add("p").Start = 0.25
	var_ValueAxis = var_ValueAxes.Add("a")
		var_ValueAxis.End = 0.25
		var_ValueAxis.Visible = false
		var_ValueAxis.ColorChart = 16119285
var_CategoryAxis = oGraph.CategoryAxis
	var_CategoryAxis.Categories = "Asia,Africa,Europe,North America,Antarctica,South America,Australia/Oceania"
	var_CategoryAxis.MajorGridLines.Color = "lightgray"
var_Series = oGraph.Series
	var_Serie = var_Series.Add("4600,1300,747,579,0,422,42")
		var_Serie.Name = "Population"
		var_Serie.Axis = "p"
		var_Serie.Type = "Line"
		var_Serie.Misc(6,3)
	var_Serie1 = var_Series.Add("4458,3037,1018,2470,1784,1018,856")
		var_Serie1.Name = "Area"
		var_Serie1.Axis = "a"
oGraph.Legend.Visible = true
oGraph.EndUpdate()

117
Defines the foreground color to show the visible values within the control's legend

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Background(208,RGB(0,0,1))
oGraph.Background(206,RGB(0,0,1))
oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area"
var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)")
	var_Serie.Name = "Population"
	var_Serie.Visible = false
oGraph.Legend.Visible = true
oGraph.EndUpdate()

116
Defines a different background color to show the visible values within the control's legend

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Background(204,RGB(240,240,240))
oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area"
var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)")
	var_Serie.Name = "Population"
	var_Serie.Visible = false
oGraph.Legend.Visible = true
oGraph.EndUpdate()

115
Defines a different background color to show the hidden values within the control's legend

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Background(205,RGB(240,240,240))
oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area"
var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)")
	var_Serie.Name = "Population"
	var_Serie.Visible = false
oGraph.Legend.Visible = true
oGraph.EndUpdate()

114
Defines the foreground color to show the hidden values within the control's legend

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Background(209,RGB(220,220,220))
oGraph.Background(207,RGB(220,220,220))
oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area"
var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)")
	var_Serie.Name = "Population"
	var_Serie.Visible = false
oGraph.Legend.Visible = true
oGraph.EndUpdate()

113
Hides a symbol or item of the legend by code

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.AutoFit = true
oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)").Name = "Area"
var_Serie = oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)")
	var_Serie.Name = "Population"
	var_Serie.Visible = false
oGraph.Legend.Visible = true
oGraph.EndUpdate()

112
Defines the percentage of transparency for displaying tooltips on series

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Background(211,RGB(75,0,0))
oGraph.AutoFit = true
oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)")
oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)")
oGraph.Cursor.Visible = true
oGraph.EndUpdate()

111
Defines the percentage of transparency for displaying tooltips on axes

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Background(210,RGB(75,0,0))
oGraph.AutoFit = true
oGraph.Series.Add("Asia(4600), Africa(1300), Europe(747), North America(579), South America(431), Australia/Oceania(42)")
oGraph.Series.Add("Asia(4458), Africa(3037), North America(2470), South America(1784), Antarctica(1400), Europe(1018), Australia/Oceania(856)")
oGraph.Cursor.Visible = true
oGraph.EndUpdate()

110
Specifies the percent of transparency to show the overview-selection (0 indicates opaque, 50% indicates semi-transparent, and 100% indicates fully transparent)

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oGraph.Background(203,RGB(75,0,0))
oGraph.ValueSize = 6
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "aapl"
	var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)"
	var_Serie.Type = "candle"
oGraph.Overview.Visible = true
oGraph.EndUpdate()

109
Changes the color to show the overview's selection (EBN color)

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oGraph.Background(202,16777216 /*0x1000000*/)
oGraph.ValueSize = 6
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "aapl"
	var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)"
	var_Serie.Type = "candle"
oGraph.Overview.Visible = true
oGraph.EndUpdate()

108
Changes the color to show the overview's selection (solid color)

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Background(202,16777471 /*0x10000ff*/)
oGraph.ValueSize = 6
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "aapl"
	var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)"
	var_Serie.Type = "candle"
oGraph.Overview.Visible = true
oGraph.EndUpdate()

107
Changes the color to show the overview's selection

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Background(202,RGB(255,0,0))
oGraph.ValueSize = 6
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "aapl"
	var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)"
	var_Serie.Type = "candle"
oGraph.Overview.Visible = true
oGraph.EndUpdate()

106
Changes the overview's background

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Background(200,RGB(240,240,240))
oGraph.ValueSize = 6
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "aapl"
	var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)"
	var_Serie.Type = "candle"
oGraph.Overview.Visible = true
oGraph.EndUpdate()

105
Specifies the visual-appearance to display the left/right parts outside of the overview-selection

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Background(200,RGB(240,240,240))
oGraph.ValueSize = 6
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "aapl"
	var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)"
	var_Serie.Type = "candle"
oGraph.Overview.Visible = true
oGraph.EndUpdate()

104
Adds left/ resize-margins of the overview's selection to resize it (EBN)

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oGraph.Background(199,16777216 /*0x1000000*/)
oGraph.ValueSize = 6
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "aapl"
	var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)"
	var_Serie.Type = "candle"
oGraph.Overview.Visible = true
oGraph.EndUpdate()

103
Adds left/ resize-margins of the overview's selection to resize it

OleObject oGraph,var_Serie

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Background(199,RGB(1,0,0))
oGraph.ValueSize = 6
oGraph.Data = "C:\Program Files\Exontrol\ExGraph\Sample\Data/aapl.txt"
var_Serie = oGraph.Series.Add()
	var_Serie.Name = "aapl"
	var_Serie.Data = "AAPL (open),AAPL (high),AAPL (low),AAPL (close)"
	var_Serie.Type = "candle"
oGraph.Overview.Visible = true
oGraph.EndUpdate()

102
Changes the colors to show the value's tooltip

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.Background(65,RGB(1,0,0))
oGraph.Background(66,RGB(255,255,255))
oGraph.AutoFit = true
oGraph.Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").ShowValue = 1
oGraph.EndUpdate()

101
Changes the visual appearance of the borders of the tooltips

OleObject oGraph

oGraph = ole_1.Object
oGraph.BeginUpdate()
oGraph.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
oGraph.Background(64,16777216 /*0x1000000*/)
oGraph.AutoFit = true
oGraph.Series.Add("Pacific Ocean(16525), Atlantic Ocean(10646), Indian Ocean(7056), Southern Ocean(2033), Arctic Ocean(1406)").ShowValue = 1
oGraph.EndUpdate()